records
Klimasensoren - Messdaten
Dataset schema
Click to expand Click to collapse
JSON Schema
The following JSON object is a standardized description of your dataset's schema. More about JSON schema.
{
- "title":"klimasensoren-messdaten",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/klimasensoren-messdaten"
}
] - "definitions":{
- "klimasensoren-messdaten":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/klimasensoren-messdaten_records"
}
}
} - "records":
} - "properties":
- "geoJSON":,{
- "title":"Geo JSON object",
- "description":"Schema for a Geo JSON object",
- "type":"object",
- "required":,[
- "type"
] - "properties":,{
- "crs":,{
- "$ref":"#/definitions/crs"
} - "bbox":{
- "$ref":"#/definitions/bbox"
}
} - "crs":
- "oneOf":[
- ,{
- "$ref":"#/definitions/geometry"
} - ,{
- "$ref":"#/definitions/geometryCollection"
} - ,{
- "$ref":"#/definitions/feature"
} - {
- "$ref":"#/definitions/featureCollection"
}
]
} - "bbox":,{
- "description":"A bounding box as defined by GeoJSON",
- "type":"array",
- "items":{
- "type":"number"
}
} - "crs":,{
- "title":"crs",
- "description":"a Coordinate Reference System object",
- "type":,[
- "object",
- "null"
] - "required":,[
- "type",
- "properties"
] - "properties":,{
- "type":,{
- "type":"string"
} - "properties":{
- "type":"object"
}
} - "type":
- "additionalProperties":false,
- "oneOf":[
- ,{
- "$ref":"#/definitions/namedCrs"
} - {
- "$ref":"#/definitions/linkedCrs"
}
]
} - "namedCrs":,{
- "properties":{
- "type":,{
- "enum":[
- "name"
]
} - "enum":
- "properties":{
- "required":,[
- "name"
] - "additionalProperties":false,
- "properties":{
- "name":{
- "type":"string"
}
} - "name":
} - "required":
} - "type":
} - "properties":
- "linkedObject":,{
- "type":"object",
- "required":,[
- "href"
] - "properties":{
- "href":,{
- "type":"string",
- "format":"uri"
} - "type":{
- "type":"string",
- "description":"Suggested values: proj4, ogjwkt, esriwkt"
}
} - "href":
} - "linkedCrs":,{
- "properties":{
- "type":,{
- "enum":[
- "link"
]
} - "enum":
- "properties":{
- "$ref":"#/definitions/linkedObject"
}
} - "type":
} - "properties":
- "geometryCollection":,{
- "title":"GeometryCollection",
- "description":"A collection of geometry objects",
- "required":,[
- "geometries"
] - "properties":{
- "type":,{
- "enum":[
- "GeometryCollection"
]
} - "enum":
- "geometries":{
- "type":"array",
- "items":{
- "$ref":"http://json-schema.org/geojson/geometry.json#"
}
}
} - "type":
} - "feature":,{
- "title":"Feature",
- "description":"A Geo JSON feature object",
- "required":,[
- "geometry",
- "properties"
] - "properties":{
- "type":,{
- "enum":[
- "Feature"
]
} - "enum":
- "geometry":,{
- "oneOf":[
- ,{
- "type":"null"
} - {
- "$ref":"#/definitions/geometry"
}
]
} - "oneOf":
- "properties":,{
- "type":[
- "object",
- "null"
]
} - "type":
- "id":{}
} - "type":
} - "featureCollection":,{
- "title":"FeatureCollection",
- "description":"A Geo JSON feature collection",
- "required":,[
- "features"
] - "properties":{
- "type":,{
- "enum":[
- "FeatureCollection"
]
} - "enum":
- "features":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/feature"
}
}
} - "type":
} - "geometry":,{
- "title":"geometry",
- "description":"One geometry as defined by GeoJSON",
- "type":"object",
- "required":,[
- "type",
- "coordinates"
] - "oneOf":,[
- ,{
- "title":"Point",
- "properties":{
- "type":,{
- "enum":[
- "Point"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/position"
}
} - "type":
} - ,{
- "title":"MultiPoint",
- "properties":{
- "type":,{
- "enum":[
- "MultiPoint"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/positionArray"
}
} - "type":
} - ,{
- "title":"LineString",
- "properties":{
- "type":,{
- "enum":[
- "LineString"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/lineString"
}
} - "type":
} - ,{
- "title":"MultiLineString",
- "properties":{
- "type":,{
- "enum":[
- "MultiLineString"
]
} - "enum":
- "coordinates":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/lineString"
}
}
} - "type":
} - ,{
- "title":"Polygon",
- "properties":{
- "type":,{
- "enum":[
- "Polygon"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/polygon"
}
} - "type":
} - {
- "title":"MultiPolygon",
- "properties":{
- "type":,{
- "enum":[
- "MultiPolygon"
]
} - "enum":
- "coordinates":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/polygon"
}
}
} - "type":
}
] - "position":,{
- "description":"A single position",
- "type":"array",
- "minItems":2,
- "items":,[
- ,{
- "type":"number"
} - {
- "type":"number"
}
] - "additionalItems":false
} - "positionArray":,{
- "description":"An array of positions",
- "type":"array",
- "items":{
- "$ref":"#/definitions/position"
}
} - "lineString":,{
- "description":"An array of two or more positions",
- "allOf":[
- ,{
- "$ref":"#/definitions/positionArray"
} - {
- "minItems":2
}
]
} - "linearRing":,{
- "description":"An array of four positions where the first equals the last",
- "allOf":[
- ,{
- "$ref":"#/definitions/positionArray"
} - {
- "minItems":4
}
]
} - "polygon":{
- "description":"An array of linear rings",
- "type":"array",
- "items":{
- "$ref":"#/definitions/linearRing"
}
}
} - "klimasensoren-messdaten_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "body_item_measured_at":,{
- "type":"string",
- "format":"date-time",
- "title":"Messdatum",
- "description":""
} - "messdatum_lang":,{
- "type":"string",
- "title":"Messdatum lang",
- "description":""
} - "standort":,{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"Standort",
- "description":""
} - "body_item_data_station_id":,{
- "type":"string",
- "title":"Station ID",
- "description":""
} - "body_item_device_id":,{
- "type":"string",
- "title":"Device ID",
- "description":""
} - "body_item_data_air_temperature":,{
- "type":"number",
- "title":"Lufttemperatur",
- "description":"",
- "unit":"°C"
} - "body_item_data_air_humidity":,{
- "type":"number",
- "title":"Luftfeuchtigkeit",
- "description":"",
- "unit":"%"
} - "body_item_data_sensor_temperature_internal":,{
- "type":"number",
- "title":"Temperatur intern",
- "description":"",
- "unit":"°C"
} - "body_item_data_precipitation":,{
- "type":"string",
- "title":"Niederschlag",
- "description":""
} - "body_item_data_atmospheric_pressure":,{
- "type":"number",
- "title":"Luftdruck",
- "description":""
} - "body_item_data_compass_heading":,{
- "type":"integer",
- "title":"Kompassausrichtung",
- "description":"Ausrichtung des Geräts in Grad (°). 0° = Norden",
- "unit":"°"
} - "body_item_data_wind_direction":,{
- "type":"number",
- "title":"Windrichtung",
- "description":"",
- "unit":"°"
} - "body_item_data_wind_speed":,{
- "type":"number",
- "title":"Windgeschwindigkeit",
- "description":""
} - "body_item_data_east_wind_speed":,{
- "type":"number",
- "title":"Ostwind-Geschwindigkeit",
- "description":""
} - "body_item_data_north_wind_speed":,{
- "type":"number",
- "title":"Nordwind-Geschwindigkeit",
- "description":""
} - "body_item_data_maximum_wind_speed":,{
- "type":"number",
- "title":"Maximale Windgeschwindigkeit",
- "description":""
} - "body_item_data_x_orientation_angle":,{
- "type":"number",
- "title":"x-Ausrichtungswinkel",
- "description":""
} - "body_item_data_y_orientation_angle":,{
- "type":"number",
- "title":"y-Ausrichtungswinkel",
- "description":""
} - "body_item_data_solar_radiation":,{
- "type":"integer",
- "title":"Sonneneinstrahlung",
- "description":""
} - "lightning_average_distance":,{
- "type":"string",
- "title":"Durchschnittliche Entfernung bei Blitzschlag",
- "description":""
} - "body_item_data_lightning_strike_count":,{
- "type":"string",
- "title":"Anzahl der Blitzeinschläge",
- "description":""
} - "body_item_data_vapor_pressure":,{
- "type":"number",
- "title":"Dampfdruck",
- "description":""
} - "body_item_data_thermistor_resistance":,{
- "type":"number",
- "title":"Thermistorwiderstand",
- "description":""
} - "body_item_data_voltage_ratio":,{
- "type":"number",
- "title":"Spannungsverhältnis",
- "description":""
} - "body_item_data_protocol_version":,{
- "type":"string",
- "title":"Protokollversion",
- "description":""
} - "body_item_data_battery_voltage":,{
- "type":"number",
- "title":"Batteriespannung",
- "description":"",
- "unit":"V"
} - "body_item_inserted_at":,{
- "type":"string",
- "format":"date-time",
- "title":"Inserted at",
- "description":""
} - "body_item_parser_id":,{
- "type":"string",
- "title":"Parser ID",
- "description":""
} - "body_item_packet_id":,{
- "type":"string",
- "title":"Packet ID",
- "description":""
} - "body_item_fields_gerateinformation_strasse":,{
- "type":"string",
- "title":"Straße",
- "description":""
} - "body_item_fields_gerateinformation_hausnummer":,{
- "type":"string",
- "title":"Hausnummer",
- "description":""
} - "body_item_fields_gerateinformation_plz":,{
- "type":"string",
- "title":"PLZ",
- "description":""
} - "body_item_fields_gerateinformation_ort":,{
- "type":"string",
- "title":"Ort",
- "description":""
} - "body_item_fields_gerateinformation_station_id":,{
- "type":"string",
- "title":"Station ID",
- "description":""
} - "body_item_icon":,{
- "type":"string",
- "title":"icon",
- "description":""
} - "body_item_slug":,{
- "type":"string",
- "title":"slug",
- "description":""
} - "body_item_name":,{
- "type":"string",
- "title":"Name",
- "description":""
} - "body_item_fields_gerateinformation_geratetyp":,{
- "type":"string",
- "title":"Gerätetyp",
- "description":""
} - "body_item_fields_gerateinformation_hersteller":,{
- "type":"string",
- "title":"Hersteller",
- "description":""
} - "body_item_fields_gerateinformation_sensorart":,{
- "type":"string",
- "title":"Sensorart",
- "description":""
} - "body_item_fields_gerateinformation_sensortyp":,{
- "type":"string",
- "title":"Typ",
- "description":""
} - "sensortyp":,{
- "type":"string",
- "title":"Sensortyp",
- "description":""
} - "sensorstatus":,{
- "type":"string",
- "title":"Sensorstatus",
- "description":""
} - "sensormodell":,{
- "type":"string",
- "title":"Sensormodell",
- "description":""
} - "body_item_fields_gerateinformation_installationshohe":,{
- "type":"string",
- "title":"Installationshöhe",
- "description":""
} - "body_item_fields_gerateinformation_installationsdatum":,{
- "type":"string",
- "format":"date",
- "title":"Installationsdatum",
- "description":""
} - "kommune":{
- "type":"string",
- "title":"Kommune",
- "description":""
}
} - "body_item_measured_at":
}
} - "fields":
} - "properties":
} - "klimasensoren-messdaten":
}